home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World Tours: Brazil
/
WorldTours: Brazil.iso
/
pc
/
content
/
main.dir
/
00107_Script_showHidePreChapter
< prev
next >
Wrap
Text File
|
2007-04-22
|
564b
|
27 lines
global chapterCount,curChapter
on beginsprite
check()
end
on mouseup
check()
end
on check
if curChapter=1 then
sprite(the currentspriteNum).blend=0
sprite(the currentspriteNum-1).blend=0
else
sprite(the currentspriteNum).blend=100
sprite(the currentspriteNum-1).blend=100
end if
if curChapter=chapterCount then
sprite(the currentspriteNum+1).blend=0
sprite(the currentspriteNum+2).blend=0
else
sprite(the currentspriteNum+1).blend=100
sprite(the currentspriteNum+2).blend=100
end if
end